home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
DESKLIBC
/
SOURCES.ZIP
/
DeskLib
/
!DLSources
/
Libraries
/
Handler
/
c
/
NullRedraw
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-09
|
462 b
|
24 lines
#include "DeskLib:WimpSWIS.h"
#include "DeskLib:Handler.h"
extern BOOL Handler_NullRedraw(event_pollblock *event, void *reference)
{
window_redrawblock redraw;
BOOL more;
UNUSED( reference);
redraw.window = event->data.openblock.window;
Wimp_RedrawWindow(&redraw, &more);
while (more)
{
/* Insert your window redraw code here */
/* e.g. Redraw_ThreeD(&redraw); */
Wimp_GetRectangle(&redraw, &more);
}
return(TRUE);
}